Skip to content

fix(homebrew): restore v0.3.10 formula on dev#1491

Merged
Wirasm merged 1 commit intodevfrom
fix/restore-homebrew-formula-on-dev
Apr 29, 2026
Merged

fix(homebrew): restore v0.3.10 formula on dev#1491
Wirasm merged 1 commit intodevfrom
fix/restore-homebrew-formula-on-dev

Conversation

@Wirasm
Copy link
Copy Markdown
Collaborator

@Wirasm Wirasm commented Apr 29, 2026

Summary

  • Problem: The recovery merge `398afe05` (Merge main into dev) resolved the `homebrew/archon.rb` conflict by running `git checkout main -- homebrew/archon.rb`. That uses the LOCAL `main` branch, which was stale: `origin/main` had advanced to `fd6d75e7` (the v0.3.10 formula commit) via `git push origin dev:main` earlier in the recovery, but local main was never fast-forwarded. Result: dev's `homebrew/archon.rb` got rewound to the old v0.3.6 state when the merge committed.
  • Why it matters: dev's template now disagrees with reality. The published brew install path is fine (the `coleam00/homebrew-archon` tap repo was synced from a correct local state during release Step 11, and its `Formula/archon.rb` has the right v0.3.10 SHAs). But anyone reading dev expecting to see the current formula sees v0.3.6, which is misleading.
  • What changed: `git checkout origin/main -- homebrew/archon.rb`, then commit. Single file, 5 lines changed (version + 4 SHAs).
  • What did NOT change (scope boundary): No code, no workflows, no CI. Pure data-restore.

User impact

Zero. `brew install coleam00/archon/archon` reads from the tap repo, which has the correct v0.3.10 formula. `scripts/update-homebrew.sh` rewrites the file from scratch on every release, so this stale state would self-heal on the next release. This PR fixes the dev template proactively so the disagreement doesn't confuse a future maintainer.

Validation

  • `git diff origin/main...HEAD` shows zero diff for `homebrew/archon.rb` — dev now matches main.
  • The four SHAs in this PR match the `checksums.txt` from the v0.3.10 GitHub release verbatim.

Security Impact

None. No new permissions, network calls, secrets, or filesystem access.

Compatibility / Migration

Backward compatible. No behavior change.

Human Verification

  • Verified that origin/main, the tap repo, and the published v0.3.10 release all agree on the formula SHAs.
  • Verified that dev's pre-PR formula (v0.3.6) does not match anything currently published.

Side Effects / Blast Radius

Single file. No code paths affected.

Rollback Plan

`git revert` this commit. dev returns to the (broken) v0.3.6 template state. No real-world impact (users install from the tap, not this file).

Risks and Mitigations

None of substance. The only conceivable risk is a future release somehow reading from this file at the wrong moment, which doesn't happen — `scripts/update-homebrew.sh` regenerates the file from scratch on every release.

Summary by CodeRabbit

  • Chores
    • Updated Homebrew formula to version 0.3.10 with refreshed binary checksums for macOS (arm64/x64) and Linux (arm64/x64) platforms.

The recovery merge `398afe05` (Merge main into dev) resolved the
homebrew/archon.rb conflict by running `git checkout main -- homebrew/archon.rb`,
which uses the LOCAL `main` branch — at the time, local main was stale
(still at the pre-formula-update v0.3.6 state) because origin/main had
moved forward via `git push origin dev:main` without local main being
fast-forwarded.

Result: dev's homebrew/archon.rb regressed to v0.3.6 with v0.3.6 SHAs,
even though origin/main, the homebrew-archon tap repo, and the published
brew install all correctly point at v0.3.10.

User impact: zero — `brew install coleam00/archon/archon` reads from the
tap repo (synced correctly during release recovery), not from this
template. But the dev template should match reality.

Fix: pull origin/main's version of the file (which has the correct
v0.3.10 formula) onto dev. Single-file change.
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 29, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 9ad99768-5b93-4473-be25-837fe28c52e6

📥 Commits

Reviewing files that changed from the base of the PR and between 8847da8 and 6238ace.

📒 Files selected for processing (1)
  • homebrew/archon.rb

📝 Walkthrough

Walkthrough

This PR updates the Homebrew formula for Archon, bumping the version from 0.3.6 to 0.3.10 and updating SHA256 checksums for prebuilt binaries across macOS and Linux architectures to match the new release artifacts.

Changes

Cohort / File(s) Summary
Homebrew Formula Update
homebrew/archon.rb
Version bumped from 0.3.6 to 0.3.10 with corresponding SHA256 checksum updates for macOS (arm64/x64) and Linux (arm64/x64) prebuilt binaries.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Possibly related issues

Poem

🐰 A version hop, from six to ten,

Checksums dancing once again,

SHA256 spins with binary care,

Homebrew's pantry now fresh and fair! 🥕✨

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the main change: restoring the v0.3.10 homebrew formula on the dev branch, which matches the single-file, 5-line change in the PR.
Description check ✅ Passed The description covers the key required elements: problem statement, why it matters, what changed, scope boundaries, validation, security impact, compatibility, human verification, side effects, and rollback plan. While it deviates from the template format, it provides comprehensive information addressing all critical aspects.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/restore-homebrew-formula-on-dev

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
Review rate limit: 7/8 reviews remaining, refill in 7 minutes and 30 seconds.

Comment @coderabbitai help to get the list of available commands and usage tips.

@Wirasm Wirasm merged commit 2945f2e into dev Apr 29, 2026
4 checks passed
@Wirasm Wirasm deleted the fix/restore-homebrew-formula-on-dev branch April 29, 2026 12:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant